home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 2
/
Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso
/
Aminet
/
gfx
/
opal
/
adprorexxwind.lzh
/
F5.ADPro
< prev
next >
Wrap
Text File
|
1993-02-13
|
759b
|
24 lines
/* ADPro ARexx script to save pic into temp without having to reset the
* save format everytime.
*** Brian Wind, February 12, 1993 ***
* Install in your REXX: directory along with the other ADPro rexx function
* key scripts. Currently set for F4 key however, you can change the name
* to F1.ADPro through F9.ADPro depending on what you need. */
OPTIONS RESULTS
ADDRESS "ADPro" /* Gotta use ADPro */
/* ADPRO_TO_FRONT */ /* Just in case you run this from cli or elsewhere */
SFORMAT /* Get current save format */
currentsformat=ADPRO_RESULT /* store it */
SFORMAT "TEMP" /* set to Temp save format */
/* Save 24 bit pic to Temp */
SAVE "XXX"
SFORMAT currentsformat /* reset save format to last used */
Exit